home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / BeanDescriptorAttributes.java < prev    next >
Text File  |  1998-10-18  |  703b  |  28 lines

  1. package com.symantec.itools.swing.beans;
  2.  
  3. /**
  4.  * Misc Swing defined bean descriptors attributes supported beyond the standard Java Beans.
  5.  */
  6. public final class BeanDescriptorAttributes
  7. {
  8.     /**
  9.      * Attribute of type Boolean
  10.      */
  11.     public static final String IS_CONTAINER_ATTRIBUTE = "isContainer";
  12.     
  13.     /**
  14.      * Attribute of type Boolean
  15.      */
  16.     public static final String IS_COMPONENT_ATTRIBUTE = "isComponent";
  17.     
  18.     /**
  19.      * Attribute of type String
  20.      */
  21.     public static final String CONTAINER_DELEGATE_ATTRIBUTE = "containerDelegate";
  22.     
  23.     /**
  24.      * Attribute of type Object[]
  25.      */
  26.     public static final String ENUMERATION_VALUES_ATTRIBUTE = "enumerationValues";
  27. }
  28.